翻訳と辞書
Words near each other
・ Preparctia hannyngtoni
・ Preparctia mirifica
・ Preparctia romanovi
・ Prepare for Impact
・ Prepare for the Judgement of Mankind
・ Prepare the Masses
・ Prepare the Preparations
・ Prepare Thyself to Deal with a Miracle
・ Prepare to Be Wrong
・ Prepared guitar
・ Prepared harp
・ Prepared Meals Tax in North Carolina
・ Prepared music
・ Prepared opening bid
・ Prepared piano
Prepared statement
・ Prepared testimony
・ Prepared-core technique
・ Preparedness
・ Preparedness (learning)
・ Preparedness Day Bombing
・ Preparedness Movement
・ Preparer Tax Identification Number
・ Preparing for a Fancy Dress Ball
・ Preparing for Emergencies
・ Preparing for the Matinee
・ Preparing to Teach in the Lifelong Learning Sector
・ Preparis
・ PrePass
・ Prepatellar bursa


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Prepared statement : ウィキペディア英語版
Prepared statement
In database management systems, a prepared statement or parameterized statement is a feature used to execute the same or similar database statements repeatedly with high efficiency. Typically used with SQL statements such as queries or updates, the prepared statement takes the form of a template into which certain constant values are substituted during each execution.
The typical workflow of using a prepared statement is as follows:
# Prepare: The statement template is created by the application and sent to the database management system (DBMS). Certain values are left unspecified, called ''parameters'', ''placeholders'' or ''bind variables'' (labelled "?" below):
#
*
# The DBMS parses, compiles, and performs query optimization on the statement template, and stores the result without executing it.
# Execute: At a later time, the application supplies (or ''binds'') values for the parameters, and the DBMS executes the statement (possibly returning a result). The application may execute the statement as many times as it wants with different values. In this example, it might supply 'Bread' for the first parameter and '1.00' for the second parameter.
As compared to executing SQL statements directly, prepared statements offer two main advantages:
* The overhead of compiling and optimizing the statement is incurred only once, although the statement is executed multiple times. Not all optimization can be performed at the time the prepared statement is compiled, for two reasons: the best plan may depend on the specific values of the parameters, and the best plan may change as tables and indexes change over time.
* Prepared statements are resilient against SQL injection, because parameter values, which are transmitted later using a different protocol, need not be correctly escaped. If the original statement template is not derived from external input, SQL injection cannot occur.
On the other hand, if a query is executed only once, server-side prepared statements can be slower because of the additional round-trip to the server. Implementation limitations may also lead to performance penalties: some versions of MySQL did not cache results of prepared queries, and some DBMSs such as PostgreSQL do not perform additional query optimization during execution.
A stored procedure, which is also precompiled and stored on the server for later execution, has similar advantages. Unlike a stored procedure, a prepared statement is not normally written in a procedural language and cannot use or modify variables or use control flow structures, relying instead on the declarative database query language. Due to their simplicity and client-side emulation, prepared statements are more portable across vendors.
== Software support ==
Prepared statements are widely supported by major DBMSs, including MySQL, Oracle, DB2, Microsoft SQL Server, and PostgreSQL.〔 Prepared statements are normally executed through a non-SQL binary protocol, for efficiency and protection from SQL injection, but with some DBMSs such as MySQL are also available using a SQL syntax for debugging purposes.
A number of programming languages support prepared statements in their standard libraries and will emulate them on the client side even if the underlying DBMS does not support them, including Java's JDBC, Perl's DBI, PHP's PDO 〔 and Python's DB-API. Client-side emulation can be faster for queries which are executed only once, by reducing the number of round trips to the server, but is usually slower for queries executed many times. It resists SQL injection attacks equally effectively.
Many types of SQL injection attacks can be eliminated by ''disabling literals'', effectively requiring the use of prepared statements; as of 2007 only H2 supports this feature.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Prepared statement」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.